home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo Software Catalog 'Copy Catalog'
- echo (c) Copyright 1986 Software Creations
- echo -
- echo Insert Software Catalog master disk in A:
- pause
- if %1x == x goto error1
- if exist %1 goto error2
- copy a:sc_cat.dbf %1
- goto end
- :error1
- copy a:sc_cat.dbf *.*
- goto end
- :error2
- echo %1 exists already.
- goto end
- :end